FREE NET PLAYER
This command will remove a player from the current net game.
FREE NET PLAYER Player Number
Player Number
Integer
The Player Number refers to the Unique ID that was given to the player when it was created
This command does not return a value.
The Player Number refers to the Unique ID that was given to the player when it was created. You can obtain this value from the checklist value a result produced when you use the PERFORM CHECKLIST FOR NET PLAYERS command.
print "EXTRA PLAYER CREATION"
PlayerNumber = create net player("NPC Player")
perform checklist for net players
Print "PLAYERS (At Time Of Call)"
for c=1 to checklist quantity()
print c;". ";checklist string$(c);" ID:";checklist value a(c);" UNIQUE:";checklist value b(c);" ";
if checklist value c(c)=1 then print "(me) ";
if checklist value d(c)=1 then print "(host) ";
next c
print "EXTRA PLAYER DESTRUCTION"
free net player PlayerNumber
MULTIPLAYER Commands Menu
Index